
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@snowplow/node-tracker
Advanced tools
Add Snowplow Tracking to your Node.js Application with @snowplow/node-tracker
.
Part of the Snowplow JavaScript Tracker monorepo.
Build with Node.js (18 - 20) and Rush.
npm install -g @microsoft/rush
git clone https://github.com/snowplow/snowplow-javascript-tracker.git
rush update
With npm:
npm install @snowplow/node-tracker
Initialize your tracker with your desired configuration:
import { tracker, gotEmitter } from '@snowplow/node-tracker';
const e = gotEmitter(
'collector.mydomain.net', // Collector endpoint
snowplow.HttpProtocol.HTTPS, // Optionally specify a method - https is the default
8080, // Optionally specify a port
snowplow.HttpMethod.POST, // Method - defaults to GET
5 // Only send events once n are buffered. Defaults to 1 for GET requests and 10 for POST requests.
);
const t = tracker(e, 'myTracker', 'myApp', false);
Then use the track
function from this package, along with the buildX
functions to send events to your configured emitters:
import {
buildSelfDescribingEvent,
buildPageView
} from '@snowplow/node-tracker';
const context = [
{
schema: 'iglu:com.acme/user/jsonschema/1-0-0',
data: {
type: 'tester',
},
},
];
t.track(
buildPageView({ pageUrl: 'http://www.example.com', pageTitle: 'example page', referrer: 'http://google.com' }),
context
);
const eventJson = {
schema: 'iglu:com.acme/viewed_product/jsonschema/1-0-0',
data: {
price: 20,
},
};
track.track(buildSelfDescribingEvent({ event: eventJson }), context);
To enable success and failure callback debugging, run your application with NODE_DEBUG=snowplow
.
Licensed and distributed under the BSD 3-Clause License (An OSI Approved License).
Copyright (c) 2022 Snowplow Analytics Ltd.
All rights reserved.
FAQs
Node tracker for Snowplow
The npm package @snowplow/node-tracker receives a total of 20,719 weekly downloads. As such, @snowplow/node-tracker popularity was classified as popular.
We found that @snowplow/node-tracker demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.